/* ══════════════════════════════════════════════════
   KLIP COPPOLA · fælles stilark
   Bruges af blogsiderne og den engelske side.
   Forsiden (index.html) har sin egen stil indbygget.
══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:      #1a1a1a;
  --ink-soft: #565656;
  --paper:    #ffffff;
  --paper-2:  #f7f5f2;
  --line:     #e2ded8;
  --red:      #b62025;
  --red-dark: #8e1519;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--paper); color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16.5px; font-weight: 400; line-height: 1.78;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(30px, 4.2vw, 50px); }
h2 { font-size: clamp(24px, 3vw, 36px); }
h3 { font-size: clamp(19px, 2vw, 24px); }
p  { max-width: 68ch; }

.wrap  { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 22px; }
.tight { width: 100%; max-width: 760px;  margin: 0 auto; padding: 0 22px; }
section { padding: clamp(40px, 5.5vw, 80px) 0; }
.mid { text-align: center; }
.kicker { font-size: 11.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--red); }
.lead  { font-size: 17.5px; color: var(--ink-soft); }
.small { font-size: 14.5px; color: var(--ink-soft); }
.hr { height: 1px; background: var(--line); border: 0; margin: clamp(26px,3.5vw,44px) 0; }

.btn {
  display: inline-block; font-size: 13.5px; font-weight: 600; letter-spacing: .09em;
  padding: 15px 32px; background: var(--red); color: #fff;
  border: 2px solid var(--red); cursor: pointer;
  transition: background .3s, border-color .3s, color .3s;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-o { background: transparent; color: var(--red); }
.btn-o:hover { background: var(--red); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 12.5px; }

/* ── Header ───────────────────────────────── */
header { position: sticky; top: 0; z-index: 90; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.hin { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 70px; }
.logo img { height: 42px; width: auto; }
nav.main { display: flex; gap: 22px; align-items: center; }
nav.main a { font-size: 14.5px; padding: 3px 0; border-bottom: 2px solid transparent; transition: color .3s, border-color .3s; white-space: nowrap; }
nav.main a:hover, nav.main a[aria-current="page"] { color: var(--red); border-color: var(--red); }
.langs { display: flex; gap: 2px; align-items: center; }
.langs a { font-size: 17px; line-height: 1; padding: 4px; opacity: .42; transition: opacity .25s; }
.langs a.on { opacity: 1; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 21px; height: 2px; background: var(--ink); margin: 4px 0; }
#mnav { display: none; border-top: 1px solid var(--line); padding: 12px 22px 20px; }
#mnav.open { display: block; }
#mnav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; }

/* ── Blogoversigt ─────────────────────────── */
.posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 34px); }
.post-card { border: 1px solid var(--line); display: flex; flex-direction: column; transition: box-shadow .35s, transform .35s; background: var(--paper); }
.post-card:hover { box-shadow: 0 14px 34px rgba(26,26,26,.10); transform: translateY(-2px); }
.post-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--paper-2); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.post-card:hover .thumb img { transform: scale(1.04); }
.post-card .body { padding: clamp(18px,2.4vw,28px); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card h2 { font-size: clamp(21px,2.2vw,27px); }
.post-card .more { margin-top: auto; font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }

/* ── Artikel ──────────────────────────────── */
article.post { max-width: 760px; margin: 0 auto; }
article.post .meta { font-size: 13px; color: var(--ink-soft); letter-spacing: .08em; text-transform: uppercase; }
article.post h1 { margin: 12px 0 18px; }
article.post h2 { margin: clamp(28px,3.6vw,46px) 0 12px; }
article.post h3 { margin: clamp(22px,2.6vw,32px) 0 10px; }
article.post p { margin-bottom: 14px; }
article.post ul { margin: 0 0 16px 0; padding: 0; list-style: none; }
article.post ul li { padding: 9px 0 9px 18px; border-left: 3px solid var(--red); margin-bottom: 10px; }
article.post figure { margin: clamp(24px,3vw,38px) 0; }
article.post figure img { width: 100%; }
article.post figcaption { font-size: 13px; color: var(--ink-soft); padding-top: 8px; }
.pull { padding-left: 18px; border-left: 3px solid var(--red); font-size: 17.5px; margin: 20px 0; }

table.cmp { width: 100%; border-collapse: collapse; margin: 10px 0 20px; }
table.cmp th, table.cmp td { text-align: left; vertical-align: top; padding: 13px 14px; border-bottom: 1px solid var(--line); font-size: 15px; }
table.cmp thead th { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; border-bottom: 2px solid var(--ink); }
table.cmp thead th:last-child { color: var(--red); border-bottom-color: var(--red); }
table.cmp tbody th { font-weight: 500; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); width: 22%; }
table.cmp td:last-child { background: rgba(182,32,37,.045); }

.cta-box { background: var(--paper-2); border: 1px solid var(--line); padding: clamp(22px,3vw,38px); text-align: center; margin-top: clamp(30px,4vw,50px); }

/* ── Footer ───────────────────────────────── */
footer { background: var(--paper-2); border-top: 1px solid var(--line); padding: clamp(36px,4.5vw,64px) 0 22px; margin-top: clamp(30px,4vw,60px); }
.fgrid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(22px,4vw,48px); }
footer h2 { font-size: 12px; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 12px; }
.flink { display: block; font-size: 14.5px; padding: 5px 0; color: var(--ink-soft); }
.flink:hover { color: var(--red); }
.fh { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; color: var(--ink-soft); padding: 3px 0; }
.fbot { margin-top: clamp(24px,3.5vw,44px); padding-top: 16px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; }
.fbot p { font-size: 12.5px; color: var(--ink-soft); max-width: none; }

.rv { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.rv.in { opacity: 1; transform: none; }

.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 900px) {
  nav.main { display: none; }
  .burger { display: block; }
  .posts, .fgrid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  table.cmp thead { display: none; }
  table.cmp tbody th, table.cmp td { display: block; width: 100%; border-bottom: 0; padding: 5px 12px; }
  table.cmp tbody th { padding-top: 16px; }
  table.cmp td::before { display: block; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
  table.cmp td:nth-of-type(1)::before { content: "Balayage"; }
  table.cmp td:nth-of-type(2)::before { content: "Shatush"; color: var(--red); }
  table.cmp tbody tr { display: block; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
}

/* ══════════════════════════════════════════════════
   Sidelayout (bruges af den engelske forside)
══════════════════════════════════════════════════ */
.hero { padding: clamp(34px,4.5vw,64px) 0 clamp(40px,5vw,72px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(26px,4.5vw,60px); align-items: center; }
.hero-img { aspect-ratio: 4/5; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.facts { display: flex; flex-wrap: wrap; gap: 10px 22px; padding-top: 4px; }
.fact { font-size: 13.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 7px; }
.fact b { color: var(--red); font-size: 15px; }

.adv { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,3vw,40px); }
.adv article { border-top: 2px solid var(--red); padding-top: 18px; }
.adv .n { font-family: 'Cormorant Garamond', serif; font-size: 15px; color: var(--red); letter-spacing: .1em; }

.row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px,4.5vw,60px); align-items: center; }
.row .pic { aspect-ratio: 4/5; overflow: hidden; }
.row .pic img { width: 100%; height: 100%; object-fit: cover; }
.row.flip .txt { order: -1; }

.prices { max-width: 800px; margin: 0 auto; }
.prow { display: flex; align-items: baseline; gap: 12px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.prow:last-of-type { border-bottom: 0; }
.pname { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; white-space: nowrap; }
.pdesc { font-size: 13.5px; color: var(--ink-soft); }
.pfill { flex: 1; min-width: 10px; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.pprice { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; color: var(--red); white-space: nowrap; }

.gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gal figure { margin: 0; overflow: hidden; aspect-ratio: 3/4; background: var(--paper-2); position: relative; }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.gal figure:hover img { transform: scale(1.05); }
.photo-label { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); text-align: center; padding: 0 12px; pointer-events: none; font-family: 'Cormorant Garamond', serif; font-style: italic; color: #fff; font-size: clamp(17px,2.1vw,27px); line-height: 1.25; text-shadow: 0 2px 14px rgba(0,0,0,.55), 0 1px 3px rgba(0,0,0,.4); }

.irow { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.irow:last-child { border-bottom: 0; }
.irow .k { min-width: 108px; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.irow a:hover { color: var(--red); }
table.hours { width: 100%; border-collapse: collapse; }
table.hours td { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; }
table.hours td:last-child { text-align: right; color: var(--ink-soft); }
table.hours tr:last-child td { border-bottom: 0; }
.map { border: 1px solid var(--line); overflow: hidden; min-height: 330px; height: 100%; }
.map iframe { width: 100%; height: 100%; min-height: 330px; border: 0; display: block; }

.roses-bg {
  background-image:
    linear-gradient(to right,
      rgba(253,249,243,0) 0%, rgba(253,249,243,.18) 8%, rgba(253,249,243,.42) 16%,
      rgba(253,249,243,.66) 24%, rgba(253,249,243,.84) 33%, rgba(253,249,243,.92) 45%,
      rgba(253,249,243,.92) 55%, rgba(253,249,243,.84) 67%, rgba(253,249,243,.66) 76%,
      rgba(253,249,243,.42) 84%, rgba(253,249,243,.18) 92%, rgba(253,249,243,0) 100%),
    url('images/roser-baggrund-1600.jpg');
  background-size: cover; background-position: center center; background-repeat: no-repeat;
}
.yellow-roses-bg {
  background-image:
    linear-gradient(to right,
      rgba(253,249,243,0) 0%, rgba(253,249,243,.18) 8%, rgba(253,249,243,.42) 16%,
      rgba(253,249,243,.66) 24%, rgba(253,249,243,.84) 33%, rgba(253,249,243,.92) 45%,
      rgba(253,249,243,.92) 55%, rgba(253,249,243,.84) 67%, rgba(253,249,243,.66) 76%,
      rgba(253,249,243,.42) 84%, rgba(253,249,243,.18) 92%, rgba(253,249,243,0) 100%),
    url('images/gule-roser-baggrund-1600.jpg');
  background-size: cover; background-position: center center; background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .hero-grid, .row, .adv { grid-template-columns: 1fr; }
  .row.flip .txt { order: 0; }
  .gal { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .prow { flex-wrap: wrap; }
  .pfill { display: none; }
  .pprice { margin-left: auto; }
  .irow { flex-direction: column; gap: 2px; }
}
