/* Hygge Hops: simple, light, personal travel planning. */

:root {
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #263632;
  --body: #52615d;
  --muted: #7a8581;
  --line: #e5e9e6;
  --red: #c51c35;
  --red-deep: #a6152b;
  --sage: #edf2ee;
  --sand: #f3eee7;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --max: 72rem;
  --narrow: 44rem;
  --header: 4.7rem;
  --radius: .55rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1rem; }
h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: -.025em;
  line-height: 1.12;
}
h1 { font-size: clamp(2.55rem, 4.6vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.95rem, 2.8vw, 2.75rem); font-weight: 600; }
h3 { font-size: 1.14rem; font-weight: 600; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 100; background: var(--white); padding: .65rem .85rem; border-radius: .4rem; }
.wrap { width: min(calc(100% - 3rem), var(--max)); margin-inline: auto; }
.wrap.narrow { width: min(calc(100% - 3rem), var(--narrow)); }
.section { padding: 5rem 0; }
.lede, .hero-lede { font-size: 1.14rem; line-height: 1.6; color: var(--body); }
.text-link { display: inline-block; color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid #b9c1bd; padding-bottom: .08rem; }
.text-link:hover { color: var(--red-deep); border-color: var(--red-deep); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgba(251,250,247,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(38,54,50,.07);
}
.header-inner {
  width: min(calc(100% - 3rem), var(--max));
  height: var(--header);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); text-decoration: none; }
.brand img { width: 2.45rem; height: 2.45rem; object-fit: contain; }
.brand span { font-size: 1.18rem; font-weight: 600; letter-spacing: -.02em; }
.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a { color: var(--ink); text-decoration: none; font-size: .92rem; font-weight: 500; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--red); }
.nav-cta { border: 1px solid var(--ink); border-radius: .45rem; padding: .66rem .92rem; }
.nav-cta:hover { background: var(--ink); color: var(--white) !important; }
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: .74rem 1.08rem;
  border-radius: .45rem;
  border: 1px solid transparent;
  font: inherit;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-deep); }
.btn[disabled] { opacity: .6; cursor: wait; }

.home-hero-nyhavn {
  position: relative;
  min-height: min(70vh, 39rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #6c7775;
}
.home-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.home-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21,33,30,.62) 0%, rgba(21,33,30,.34) 48%, rgba(21,33,30,.08) 100%); }
.home-hero-content { position: relative; z-index: 1; color: var(--white); padding-block: 5.5rem; }
.home-hero-content h1 { color: var(--white); max-width: 13ch; }
.home-hero-content p { max-width: 34rem; margin: 1.1rem 0 1.5rem; font-size: 1.13rem; line-height: 1.6; color: rgba(255,255,255,.92); }

.intro-section { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: start; }
.intro-grid h2 { max-width: 11ch; }
.intro-copy { max-width: 34rem; font-size: 1.05rem; }

.services-section { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.8rem; }
.services-grid p { color: var(--muted); margin: .55rem 0 0; }

.roots-section { background: var(--sage); }
.roots-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; }
.roots-grid figure { margin: 0; overflow: hidden; border-radius: var(--radius); }
.roots-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 70%; }
.roots-copy { max-width: 31rem; }
.roots-copy h2 { margin-bottom: 1.15rem; }
.roots-copy .text-link { margin-top: .35rem; }

.testimonial-section { background: var(--white); }
.section-heading { margin-bottom: 2rem; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 3.2rem; }
blockquote { margin: 0; padding: 1.5rem 0; border-top: 1px solid var(--line); }
blockquote p { margin: 0 0 1rem; color: var(--ink); font-size: 1rem; }
blockquote footer { display: flex; flex-direction: column; gap: .08rem; font-size: .85rem; }
blockquote footer span { color: var(--muted); }

.final-cta { background: var(--sand); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.final-cta h2 { margin-bottom: .45rem; }
.final-cta p { max-width: 36rem; margin: 0; }

.page-hero { padding: 4.25rem 0 3.3rem; }
.simple-hero-grid { display: grid; grid-template-columns: 1fr 18rem; gap: 4rem; align-items: center; }
.about-hero-photo { margin: 0; border-radius: var(--radius); overflow: hidden; }
.about-hero-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; }
.page-hero h1 { font-size: clamp(2.6rem, 4.4vw, 4rem); }
.page-hero .lede { margin-top: 1rem; max-width: 36rem; }
.story-section, .faq-section { background: var(--white); }
.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; }
.story-copy { max-width: 38rem; }
.values-section { background: var(--paper); }
.values-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.4rem; }
.value-item p { color: var(--muted); margin-top: .55rem; }

.faq-hero { padding-bottom: 2rem; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 1.2rem 2rem 1.2rem 0; color: var(--ink); font-weight: 600; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .2rem; top: 1.05rem; font-size: 1.25rem; color: var(--muted); font-weight: 400; }
.faq details[open] summary::after { content: "×"; }
.faq details p { padding: 0 2rem 1.2rem 0; color: var(--body); }
.faq-cta { margin-top: 2rem; }

.contact-hero { padding: 4.25rem 0 5rem; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: start; }
.contact-copy { max-width: 31rem; }
.contact-copy h1 { max-width: 11ch; }
.contact-email { margin-top: 1.4rem; color: var(--muted); }
.contact-form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; }
.enquire-form { display: grid; gap: 1rem; }
.enquire-form label { display: grid; gap: .4rem; color: var(--ink); font-size: .9rem; font-weight: 600; }
.enquire-form input, .enquire-form textarea { width: 100%; border: 1px solid #d8dedb; background: var(--white); border-radius: .45rem; padding: .8rem .85rem; font: inherit; color: var(--ink); }
.enquire-form input:focus, .enquire-form textarea:focus { outline: 2px solid rgba(197,28,53,.18); border-color: var(--red); }
.enquire-form textarea { min-height: 9rem; resize: vertical; }
.enquire-form .btn { justify-self: start; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.notice, .form-status { margin: 0 0 1rem; padding: .75rem .9rem; border-radius: .4rem; background: var(--sage); }
.err { background: #f8e8e5; color: #7d332c; }

.legal h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.legal .muted { color: var(--muted); }

.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 3rem 0 1.2rem; }
.footer-inner { width: min(calc(100% - 3rem), var(--max)); margin-inline: auto; display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 2rem; align-items: start; }
.site-footer .brand { color: var(--white); margin-bottom: .7rem; }
.site-footer .brand img { filter: none; }
.footer-brand p, .footer-contact p { margin: 0; font-size: .9rem; }
.footer-contact a { display: inline-block; margin-top: .3rem; color: var(--white); }
.footer-links { display: grid; gap: .35rem; }
.footer-links a { color: rgba(255,255,255,.8); text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { width: min(calc(100% - 3rem), var(--max)); margin: 2.2rem auto 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; color: rgba(255,255,255,.52); }

@media (max-width: 860px) {
  :root { --header: 4.2rem; }
  .wrap, .header-inner, .footer-inner, .footer-bottom { width: min(calc(100% - 2rem), var(--max)); }
  .section { padding: 4.1rem 0; }
  .nav-toggle { display: block; width: 2.5rem; height: 2.5rem; border: 0; background: transparent; position: relative; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { position: absolute; left: .62rem; width: 1.25rem; height: 1.5px; background: var(--ink); content: ""; }
  .nav-toggle span { top: 1.2rem; }
  .nav-toggle span::before { top: -.4rem; left: 0; }
  .nav-toggle span::after { top: .4rem; left: 0; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: var(--header); background: var(--paper); border-bottom: 1px solid var(--line); padding: 1rem; flex-direction: column; align-items: stretch; gap: .2rem; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .75rem .5rem; }
  .nav-cta { border: 0; padding: .75rem .5rem; }
  .nav-cta:hover { background: transparent; color: var(--red) !important; }
  .home-hero-nyhavn { min-height: 31rem; align-items: end; }
  .home-hero-content { padding-block: 4rem; }
  .home-hero-overlay { background: linear-gradient(0deg, rgba(21,33,30,.7) 0%, rgba(21,33,30,.2) 78%); }
  .intro-grid, .roots-grid, .story-grid, .contact-grid, .simple-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid, .values-list, .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid { gap: 0; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .about-hero-photo { width: 12rem; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .wrap, .header-inner, .footer-inner, .footer-bottom { width: min(calc(100% - 1.5rem), var(--max)); }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.85rem; }
  .brand span { font-size: 1.08rem; }
  .home-hero-nyhavn { min-height: 27rem; }
  .home-hero-content p { font-size: 1.02rem; }
  .contact-form-wrap { padding: 1.2rem; }
}
