 :root {
      --green:   #2E7D32;
      --green-l: #43A047;
      --green-d: #1B5E20;
      --orange:  #F57C00;
      --orange-l:#FFA726;
      --cream:   #FAF7F2;
      --sand:    #EDE0CC;
      --brown:   #6D4C41;
      --dark:    #1A1208;
      --text:    #2C2416;
      --muted:   #7A6A56;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; /* respect notch safe area on ios */ padding-top: env(safe-area-inset-top); }


    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; }

    /* ── NAVBAR ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw;
      height: 72px;
      background: rgba(250,247,242,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(109,76,65,0.12);
      transition: box-shadow .3s;
    }
    nav.scrolled { box-shadow: 0 4px 24px rgba(26,18,8,.10); }

    .nav-logo {
      display: flex; flex-direction: column; line-height: 1;
    }
    .nav-logo span:first-child {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem; font-weight: 600; color: var(--green-d);
      letter-spacing: .02em;
    }
    .nav-logo span:last-child {
      font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
      color: var(--orange); font-weight: 500;
    }

    .nav-links {
      display: flex; gap: 2rem; list-style: none;
    }
    .nav-links a {
      text-decoration: none; font-size: .88rem; font-weight: 500;
      color: var(--text); letter-spacing: .04em;
      position: relative; padding: .6rem 0 3px;
      transition: color .2s;
    }
    .nav-links a::after {
      content:''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 2px; background: var(--orange);
      transition: width .25s ease;
    }
    .nav-links a:hover { color: var(--green); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: var(--green); color: #fff !important;
      padding: .45rem 1.2rem; border-radius: 4px;
      font-size: .82rem !important;
      transition: background .2s !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--green-d) !important; color:#fff !important; }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--text); border-radius: 2px; transition: .3s;
    }

    /* ── HERO ── */
    #hero {
      position: relative;
      height: 100svh; min-height: 580px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    @media (max-width: 600px) {
      #hero { min-height: 90vh; }
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1600&q=80');
      background-size: cover; background-position: center;
      transform: scale(1.06);
      transition: transform 12s ease;
    }
    #hero:hover .hero-bg { transform: scale(1.0); }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        160deg,
        rgba(26,18,8,.62) 0%,
        rgba(27,94,32,.38) 60%,
        rgba(245,124,0,.18) 100%
      );
    }
    .hero-content {
      position: relative; z-index: 2;
      text-align: center; color: #fff;
      padding: 0 1.5rem;
      animation: fadeUp .9s ease both;
    }
    .hero-eyebrow {
      font-size: .78rem; letter-spacing: .28em; text-transform: uppercase;
      color: var(--orange-l); margin-bottom: 1rem;
      font-weight: 500;
    }
    .hero-title {
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      font-weight: 300; line-height: 1.08;
      text-shadow: 0 2px 24px rgba(0,0,0,.3);
      margin-bottom: .5rem;
    }
    .hero-title em { font-style: italic; color: var(--orange-l); }
    .hero-sub {
      font-size: clamp(.95rem, 2vw, 1.2rem);
      font-weight: 300; opacity: .9; margin-bottom: .5rem;
      letter-spacing: .02em;
    }
    .hero-amharic {
      font-size: 1.05rem; color: rgba(255,255,255,.75);
      margin-bottom: 2.2rem; font-style: italic;
    }
    .hero-btns {
      display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    }
    .btn-primary {
      background: var(--orange); color: #fff;
      padding: .8rem 2rem; border-radius: 4px;
      font-size: .9rem; font-weight: 600; letter-spacing: .04em;
      text-decoration: none; border: none; cursor: pointer;
      transition: background .2s, transform .2s, box-shadow .2s;
      box-shadow: 0 4px 16px rgba(245,124,0,.4);
    }
    .btn-primary:hover {
      background: #E65100; transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(245,124,0,.5);
    }
    .btn-outline {
      background: transparent; color: #fff;
      padding: .78rem 2rem; border-radius: 4px;
      font-size: .9rem; font-weight: 500; letter-spacing: .04em;
      text-decoration: none; border: 1.5px solid rgba(255,255,255,.6);
      transition: background .2s, border-color .2s;
    }
    .btn-outline:hover {
      background: rgba(255,255,255,.12);
      border-color: #fff;
    }

    .hero-scroll {
      position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: .4rem;
      color: rgba(255,255,255,.6); font-size: .7rem; letter-spacing: .14em;
      text-transform: uppercase;
    }
    .scroll-line {
      width: 1px; height: 42px;
      background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
      animation: scrollPulse 2s ease infinite;
    }

    /* ── SECTIONS ── */
    section { padding: 6rem 5vw; }
    /* keeps inner content from growing too wide on large screens */
    section > * { max-width: 1200px; margin: 0 auto; }
    .section-tag {
      display: inline-block; font-size: .72rem; letter-spacing: .22em;
      text-transform: uppercase; color: var(--orange); font-weight: 600;
      margin-bottom: .8rem;
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 300;
      color: var(--green-d); line-height: 1.15;
      margin-bottom: 1.2rem;
    }
    .section-title em { font-style: italic; color: var(--brown); }
    .divider {
      width: 48px; height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--green));
      margin-bottom: 1.8rem; border-radius: 2px;
    }

    /* ── ABOUT ── */
    #about { background: var(--cream); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img {
      width: 100%; height: 460px; object-fit: cover; border-radius: 8px;
      display: block;
    }
    .about-badge {
      position: absolute; bottom: -1.5rem; right: -1.5rem;
      background: var(--orange); color: #fff;
      width: 110px; height: 110px; border-radius: 50%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      box-shadow: 0 8px 24px rgba(245,124,0,.4);
    }
    .about-badge strong { font-size: 2rem; line-height: 1; }
    .about-badge span { font-size: .65rem; letter-spacing: .08em; text-align: center; }

    .about-text p {
      font-size: 1.05rem; line-height: 1.8; color: var(--muted);
      margin-bottom: 1rem;
    }
    .about-features {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: .9rem; margin-top: 1.8rem;
    }
    .feature-chip {
      display: flex; align-items: center; gap: .65rem;
      background: #fff; border: 1px solid var(--sand);
      padding: .65rem 1rem; border-radius: 6px;
      font-size: .85rem; font-weight: 500;
      transition: border-color .2s, box-shadow .2s;
    }
    .feature-chip:hover {
      border-color: var(--green-l);
      box-shadow: 0 4px 12px rgba(46,125,50,.1);
    }
    .feature-chip .icon {
      font-size: 1.3rem; flex-shrink: 0;
    }

    /* ── ROOMS ── */
    #rooms { background: #fff; padding: 60px; text-align: center; }
    .room-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 1rem;
    }
    .room-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
      padding: 25px;
      transition: all 0.4s ease;
      overflow: hidden;
      position: relative;
    }
    .room-card:hover {
      transform: translateY(-15px) scale(1.02);
      box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }
    .room-card:hover .room-img {
      transform: scale(1.05);
    }
    .room-img {
      width: 100%;
      border-radius: 10px;
      display: block;
      transition: transform 0.4s ease;
    }
    .room-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 600; color: var(--green-d);
      margin: 1rem 0 0.5rem;
    }
    .room-card p {
      font-size: 1.1rem; color: var(--brown); font-weight: 600;
      margin-bottom: 1rem;
    }
    .room-card ul {
      list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    .room-card li {
      font-size: 0.9rem; color: var(--muted);
      display: flex; align-items: center; gap: 0.5rem;
    }
    .room-card li::before {
      content: '✓'; color: var(--green); font-weight: 700; font-size: 0.8rem;
    }
    .room-cta {
      background: linear-gradient(135deg, var(--green), var(--green-d));
      color: #fff;
      border: none; padding: 16px; cursor: pointer;
      border-radius: 8px; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em;
      text-decoration: none; display: block; text-align: center; margin-top: 1.2rem;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .room-cta:hover {
      background: linear-gradient(135deg, var(--green-d), var(--green));
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    .room-cta:active {
      transform: translateY(0);
    }

    /* ── AMENITIES ── */
    #amenities { background: var(--green-d); }
    #amenities .section-title { color: var(--sand); }
    #amenities .section-tag { color: var(--orange-l); }
    .amenities-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1.2rem; margin-top: 1rem;
    }
    .amenity-card {
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
      border-radius: 10px; padding: 1.6rem 1rem;
      text-align: center; color: #fff;
      transition: background .25s, transform .25s;
    }
    .amenity-card:hover {
      background: rgba(255,255,255,.12); transform: translateY(-4px);
    }
    .amenity-icon { font-size: 2.2rem; margin-bottom: .7rem; }
    .amenity-name { font-size: .85rem; font-weight: 500; opacity: .9; }
    .amenity-name-am {
      font-size: .72rem; opacity: .55; margin-top: .2rem;
    }

    /* ── GALLERY ── */
    #gallery { background: var(--cream); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(3, 180px);
      gap: 1rem; margin-top: 1rem;
    }
    .gallery-item {
      overflow: hidden; border-radius: 8px;
      position: relative; cursor: pointer;
    }
    .gallery-item:nth-child(1) { grid-row: span 2; }
    .gallery-item:nth-child(5) { grid-column: span 2; }

    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform .5s ease;
    }
    .gallery-item:hover img { transform: scale(1.07); }
    .gallery-item .overlay {
      position: absolute; inset: 0;
      background: rgba(26,18,8,.32);
      opacity: 0; transition: opacity .3s;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.6rem;
    }
    .gallery-item:hover .overlay { opacity: 1; }

    /* ── LOCATION ── */
    #location { background: #fff; }
    .location-grid {
      display: grid; grid-template-columns: 1fr 1.6fr;
      gap: 3rem; align-items: start;
    }
    .location-info { }
    .location-info p {
      font-size: 1rem; line-height: 1.8; color: var(--muted); margin-bottom: 1.2rem;
    }
    .location-detail {
      display: flex; align-items: flex-start; gap: .7rem;
      margin-bottom: .8rem; font-size: .9rem; color: var(--text);
    }
    .location-detail .icon { color: var(--green); font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
    .map-wrap {
      border-radius: 10px; overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,.1);
    }
    .map-wrap iframe {
      width: 100%; height: 360px; display: block; border: none;
    }

    /* ── CONTACT ── */
    #contact { background: var(--cream); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: 3.5rem; align-items: start;
    }
    .contact-info-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; color: var(--green-d); margin-bottom: 1.2rem;
    }
    .contact-detail {
      display: flex; align-items: center; gap: .8rem;
      padding: .8rem 0; border-bottom: 1px solid var(--sand);
      font-size: .9rem; color: var(--text);
      text-decoration: none;
    }
    .contact-detail .icon { font-size: 1.2rem; color: var(--orange); }
    .social-links {
      display: flex; gap: .8rem; margin-top: 1.5rem;
    }
    .social-btn {
      display: flex; align-items: center; justify-content: center;
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--green); color: #fff; font-size: .95rem;
      text-decoration: none; transition: background .2s, transform .2s;
    }
    .social-btn:hover { background: var(--green-d); transform: scale(1.1); }

    /* Contact form */
    .contact-form {
      background: #fff; border-radius: 12px; padding: 2.2rem;
      box-shadow: 0 8px 32px rgba(0,0,0,.07);
    }
    .form-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; color: var(--green-d); margin-bottom: 1.4rem;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { margin-bottom: 1rem; }
    .form-group label {
      display: block; font-size: .78rem; font-weight: 600;
      letter-spacing: .06em; text-transform: uppercase;
      color: var(--muted); margin-bottom: .4rem;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%; padding: .7rem .9rem;
      border: 1.5px solid var(--sand); border-radius: 6px;
      font-family: 'DM Sans', sans-serif; font-size: .9rem;
      background: var(--cream); color: var(--text);
      outline: none; transition: border-color .2s;
    }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--green);
    }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-submit {
      width: 100%; padding: .85rem;
      background: var(--green); color: #fff;
      border: none; border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: .9rem; font-weight: 600; letter-spacing: .05em;
      cursor: pointer; transition: background .2s;
    }
    .form-submit:hover { background: var(--green-d); }

    /* ── FOOTER ── */
    footer {
      background: var(--dark); color: rgba(255,255,255,.65);
      padding: 3.5rem 5vw 2rem;
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr;
      gap: 3rem; margin-bottom: 2.5rem;
    }
    .footer-brand span:first-child {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; color: #fff; display: block; margin-bottom: .2rem;
    }
    .footer-brand span:nth-child(2) {
      font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
      color: var(--orange); display: block; margin-bottom: .9rem;
    }
    .footer-brand p { font-size: .85rem; line-height: 1.7; }
    .footer-col-title {
      font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
      color: var(--orange); font-weight: 600; margin-bottom: 1rem;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
    .footer-links a {
      font-size: .85rem; color: rgba(255,255,255,.6);
      text-decoration: none; transition: color .2s;
    }
    .footer-links a:hover { color: #fff; }
    .footer-contact-item {
      display: flex; gap: .6rem; align-items: flex-start;
      font-size: .85rem; margin-bottom: .65rem;
    }
    .footer-contact-item .icon { color: var(--orange); flex-shrink: 0; margin-top: .15rem; }
    .footer-bar {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 1.5rem;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: .5rem;
      font-size: .78rem; color: rgba(255,255,255,.35);
    }

    /* ── WHATSAPP ── */
    .whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    font-size:28px;
    padding:15px;
    border-radius:50%;
    text-decoration:none;
    box-shadow:0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--cream); }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem; margin-top: 1rem;
    }
    .testimonial-card {
      background: #fff; border-radius: 10px; padding: 2rem;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      text-align: center;
    }
    .testimonial-card p {
      font-size: 1rem; line-height: 1.6; color: var(--muted);
      margin-bottom: 1.5rem;
    }
    .testimonial-author {
      font-size: .9rem; color: var(--green-d); font-weight: 600;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes scrollPulse {
      0%,100% { opacity: .6; }
      50%      { opacity: .2; }
    }

    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-12px); }
      to   { opacity: 1; transform: none; }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    section {
      animation: fadeIn 1s ease;
    }

    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      .about-grid, .contact-grid, .location-grid { grid-template-columns: 1fr; }
      .about-badge { right: .5rem; bottom: -1rem; width: 90px; height: 90px; }
      .about-img { height: 280px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 700px) {
      .nav-links { display: none; flex-direction: column; }
      .nav-links.open {
        display: flex; position: absolute; top: 72px; left: 0; right: 0;
        background: rgba(250,247,242,.97); backdrop-filter: blur(8px);
        padding: 1.2rem 5vw 1.5rem; border-bottom: 1px solid var(--sand);
        animation: fadeDown .3s ease both;
      }
      .hamburger { display: flex; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gallery-item:nth-child(1) { grid-row: span 1; }
      .gallery-item:nth-child(5) { grid-column: span 1; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }

    /* extra tweaks for very small phones */
    @media (max-width: 500px) {
      .hero-title { font-size: clamp(2.2rem, 8vw, 4rem); }
      .hero-eyebrow { font-size: .7rem; letter-spacing: .18em; }
      .nav-logo span:first-child { font-size: 1.3rem; }
      .nav-links a { font-size: .98rem; }
      .btn-primary, .btn-outline { padding: 1rem 1.6rem; font-size: 1rem; }
    }

    /* larger screen spacing */
    @media (min-width: 1200px) {
      section { padding: 8rem 0; }
      .room-container { gap: 2.4rem; }
      .amenities-grid { gap: 1.8rem; }
      .gallery-grid { gap: 1.5rem; }
    }

    /* Tablet styles */
    @media (min-width: 768px) {
      .room-container { grid-template-columns: repeat(2, 1fr); }
      .room-card { padding: 30px; }
      .room-card h3 { font-size: 1.7rem; }
      .room-card p { font-size: 1.2rem; }
    }

    /* Desktop styles */
    @media (min-width: 1024px) {
      .room-container { grid-template-columns: repeat(3, 1fr); }
      .room-card { padding: 35px; }
      .room-card h3 { font-size: 1.8rem; }
      .room-card p { font-size: 1.3rem; }
    }
  